home *** CD-ROM | disk | FTP | other *** search
/ Medabots Cardz / Medabots CD Cardz Metabee.bin / mac / assets / metabee.dxr / 00084_Script_84 < prev    next >
Text File  |  2001-12-07  |  816b  |  29 lines

  1. property useronline, mysprite
  2. global jumbo
  3. --keep
  4. on beginsprite me
  5.   set mysprite to the spritenum of me
  6.   set the blend of sprite mysprite = 0
  7. end
  8.  
  9. on exitframe me
  10.   useronline = (the environment).internetConnected
  11.   if useronline = #offline then
  12.     set the blend of sprite(mysprite) = 100
  13.   else
  14.     if useronline = #online then
  15.       if jumbo = "Pending" then
  16.         set the blend of sprite(6) = 100
  17.         set the text of member("statusreport") to "Please wait whilst we check your login status"
  18.       else if jumbo = "user_id=0" then
  19.         set the blend of sprite(6) = 100
  20.         set the text of  member("statusreport") to "You are not registered."
  21.         set the loch of sprite(54) to 330
  22.         set the locV of sprite(54) to 300
  23.       end if
  24.     end if
  25.   end if
  26.   
  27.   
  28. end
  29.